home *** CD-ROM | disk | FTP | other *** search
- unit Pics;
-
- { Program copyright (c) 1995 by Charles Calvert }
- { Project Name: RUNDLL }
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs,
- Messages, Classes, Graphics,
- Controls, Forms, Dialogs,
- ExtCtrls, TabNotBk;
-
- type
- TSpacePict1 = class(TForm)
- TabbedNotebook1: TTabbedNotebook;
- Image1: TImage;
- Image2: TImage;
- Image3: TImage;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- SpacePict1: TSpacePict1;
-
- procedure ShowPictures(Handle: THandle); export;
-
- implementation
-
- {$R *.DFM}
-
- procedure ShowPictures(Handle: THandle);
- begin
- Application.Handle := Handle;
- SpacePict1 := TSpacePict1.Create(Application);
- try
- SpacePict1.ShowModal;
- finally
- SpacePict1.Free;
- end;
- end;
-
- end.
-